What's the best way to get data across PCI to and from this memory?
A PPC can only burst to and from a CACHEABLE memory space. Your best option is
to use BlockMoveDataUncached. This does not use burst transfers, but rather, it
utilizes floating point loads and stores.
You may want to design your own algorithms, using the double declaration in C
to get compilers to translate BlockMoveDataUncached into floating point loads
and stores.
See Designing PCI Cards and Drivers for PowerMac Computers, Chapter 9.